home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / VCL / CustomDraw / customdraw.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  347 b   |  16 lines

  1. program CustomDraw;
  2.  
  3. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  4.  
  5. uses
  6.   Forms,
  7.   CustomDrawTreeView in 'CustomDrawTreeView.pas' {CustomDrawForm};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TCustomDrawForm, CustomDrawForm);
  14.   Application.Run;
  15. end.
  16.